home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __MCMAP_H
- #define __MCMAP_H
-
- #define MCMAP_ID 0x0109
-
- #define COLOR_CHANGE 0x0201
-
- class MCMap : public MStGrid {
- public:
- MCMap (int x1, int y1, int x2, int y2,
- WORD TheLength, WORD TheWidth,
- WORD AHandle, WORD AnHParent = HROOT);
- MCMap (const RECT& ABox,
- WORD TheLength, WORD TheWidth,
- WORD AHandle, WORD AnHParent = HROOT);
- virtual void Draw (void);
- virtual void Draw (int cx, int cy);
- virtual WORD Handler (EVENT event);
- virtual inline classType isA (void) {return (MCMAP_ID);};
- ~MCMap (void);
- };
-
- #endif
-